Action hook '{$taxonomy}_edit_form_fields'
in WP Core File wp-admin/edit-tag-form.php at line 254
Description
Fires after the Edit Term form fields are displayed. The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug. Possible hook names include: - `category_edit_form_fields` - `post_tag_edit_form_fields`
Occurrences
Filename |
Line Number |
wp-admin/edit-tag-form.php |
254 |
Parameters
Type |
Name |
Description |
WP_Term |
$tag |
Current taxonomy term object. |
string |
$taxonomy |
Current taxonomy slug. |
PHP Doc
/**
* Fires after the Edit Term form fields are displayed.
*
* The dynamic portion of the hook name, `$taxonomy`, refers to
* the taxonomy slug.
*
* Possible hook names include:
*
* - `category_edit_form_fields`
* - `post_tag_edit_form_fields`
*
* @since 3.0.0
*
* @param WP_Term $tag Current taxonomy term object.
* @param string $taxonomy Current taxonomy slug.
*/